home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-05-01 | 991 b | 50 lines | [TEXT/MPS ] |
- /*
- File: CalendarDate.idl
-
- Contains: SOM Class definition for CalendarDateObjects
-
- Version: Technology: System 8.0
- Release: Universal Interfaces 3.0d3 on Copland DR1
-
- Copyright: © 1995-1996 by Apple Computer, Inc. All rights reserved.
-
- Bugs?: If you find a problem with this file, send the file and version
- information (from above) and the problem description to:
-
- Internet: apple.bugs@applelink.apple.com
- AppleLink: APPLE.BUGS
- */
-
-
- #ifndef __CALENDARDATE__
- #define __CALENDARDATE__
-
- #include <somobj.idl>
- #include <somcls.idl>
- #include <Types.idl>
-
- interface TCalendarDate : SOMObject
- {
- attribute UInt32 fCalendarRef;
-
- OptionBits ValidateCalendarDate(in OptionBits fieldSelector);
-
- #ifdef __SOMIDL__
- implementation
- {
- passthru C_h_before = "#include <TimeObjects.h>";
- releaseorder: _get_fCalendarRef,
- _set_fCalendarRef,
- ValidateCalendarDate;
- somInit: override;
- majorversion = 1;
- minorversion = 1;
-
- };
- #endif
-
- };
-
- #endif
-
-